home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / Freeware / Swf_Player / Lib / zlib / Makefile < prev    next >
Encoding:
Makefile  |  2002-11-17  |  1.2 KB  |  39 lines

  1. # Makefile for zlib
  2. # Copyright (C) 1995-1998 Jean-loup Gailly.
  3. # For conditions of distribution and use, see copyright notice in zlib.h 
  4.  
  5. CFLAGS=-O3 -fconserve-space -funroll-loops -ffast-math -fomit-frame-pointer -m68020-60 -DUSE_MMAP -I/INetSDK/Include -I/Include/
  6. CC=gcc
  7.  
  8. CPP=$(CC) -E
  9.  
  10. VER=1.1.3
  11. LIBS=libz.a
  12.  
  13. AR=ar rc
  14. RANLIB=ranlib
  15.  
  16. #OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o trees.o \
  17. #       zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
  18. OBJS = adler32.o zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
  19.  
  20. libz.a: $(OBJS) $(OBJA)
  21.     $(AR) $@ $(OBJS)
  22. #    -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
  23.  
  24. clean:
  25.     rm -f *.o libz.a
  26.  
  27. # DO NOT DELETE THIS LINE -- make depend depends on it.
  28.  
  29. adler32.o: zlib.h zconf.h
  30. infblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.h
  31. infcodes.o: zutil.h zlib.h zconf.h
  32. infcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.h
  33. inffast.o: zutil.h zlib.h zconf.h inftrees.h
  34. inffast.o: infblock.h infcodes.h infutil.h inffast.h
  35. inflate.o: zutil.h zlib.h zconf.h infblock.h
  36. inftrees.o: zutil.h zlib.h zconf.h inftrees.h
  37. infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
  38. zutil.o: zutil.h zlib.h zconf.h  
  39.